Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@heathmont/moon-themes
Advanced tools
--- name: Introduction menu: Themes route: /themes/introduction ---
Themes hold the design tokens for our individual brands and are an integral part of our UI.
Currently available themes include:
Wrap your entire application with the <ThemeProvider />
, providing your
preferred theme via the theme
prop.
Be sure to include Global styles, as these will inherit the theme and set the integral style foundations for your app.
/* App.tsx */
import React from 'react';
import { Global } from '@heathmont/moon-global';
import { ThemeProvider, sportsbetDark } from '@heathmont/moon-themes';
export const App = () => (
<ThemeProvider theme={sportsbetDark}>
<React.Fragment>
<Global />
<main>{/* Your App… */}</main>
</React.Fragment>
</ThemeProvider>
);
If you're using TypeScript, you can extend styled-components' types to include our theming schema.
To make use of extra features (such as auto-completion in VSCode), create a
d.ts
file with the following:
/* types/styled-components.d.ts */
import 'styled-components';
import { Theme } from '@heathmont/moon-themes';
declare module 'styled-components' {
export interface DefaultTheme extends Theme {}
}
The theme context is included by default in styled components props, and can be implemented as follows:
import styled from 'styled-components';
/* Access `theme` from styled component props */
const Example = styled.div(({ theme }) => ({
display: 'block',
color: theme.colorNew.bulma,
padding: theme.space.default,
}));
/* Alternatively, destructure the theme properties… */
const Example = styled.div(({ theme: { colorNew, space } }) => ({
display: 'block',
color: colorNew.bulma,
padding: space.default,
}));
The useTheme
helper function returns the current theme from the theme context:
import React from 'react';
import { useTheme } from '@heathmont/moon-themes';
const Example = () => {
const theme = useTheme();
return <p>{theme.brand}</p>; /* Returns the theme brand name. */
};
or for more manual control:
import React from 'react';
import { ThemeContext } from '@heathmont/moon-themes';
const Example = () => {
const theme = React.useContext(ThemeContext);
return <p>{theme.brand}</p>; /* Returns the theme brand name. */
};
FAQs
--- name: Introduction menu: Themes route: /themes/introduction ---
The npm package @heathmont/moon-themes receives a total of 0 weekly downloads. As such, @heathmont/moon-themes popularity was classified as not popular.
We found that @heathmont/moon-themes demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 134 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.